home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / E.T.O. #4 Installer / Proff Install < prev    next >
Text File  |  1991-05-23  |  981b  |  39 lines

  1. #    P R O F F   I N S T A L L A T I O N   S C R I P T
  2. #
  3. #    Copyright Apple Computer, Inc. 1991 - All rights reserved.
  4. #    
  5. #
  6. #    This script is used to install the Proff tools and examples
  7. #    from the E.T.O. #4 distribution compact disk into the MPW folder
  8. #    on the destination hard disk. 
  9. #
  10. #    Options: None
  11. #
  12. #    This script makes use of the following Shell variables:
  13. #
  14. #    {ToDir}            - the name of the MPW folder on the destination hard drive
  15.  
  16.  
  17. set    Source    "{CDVolume}{Tools}Macintosh Programmer’s Workshop:MPW PQR4:Proff:"
  18.  
  19. If Not "`Exists -d "{ToDir}"`"
  20.     Newfolder "{ToDir}"
  21. End
  22.  
  23. If Not "`Exists -d "{ToDir}:Tools"`"
  24.     Newfolder "{ToDir}:Tools"
  25. End
  26.  
  27. If Not "`Exists -d "{ToDir}:Libraries"`"
  28.     Newfolder "{ToDir}:Libraries"
  29. End
  30.  
  31. If Not "`Exists -d "{ToDir}:Libraries:Libraries"`"
  32.     Newfolder "{ToDir}:Libraries:Libraries"
  33. End
  34.  
  35.  
  36. Duplicate -y "{Source}Tools:printProff"             "{ToDir}:Tools:printProff"
  37. Duplicate -y "{Source}Libraries:Libraries:proff.o"    "{ToDir}:Libraries:Libraries:proff.o"
  38.  
  39. Exit 0